python loop through specific angle

30

let startingPoint = 30 // in degrees
let endPoint = startingPoint - 90
while currentPoint > endPoint {
    rotateLeft()
}

Comments

Submit
0 Comments